12- stars horizontal_use_of_default_end_statement.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet


for i in range(10):
        print("*", end="")

print()
for i in range(10):
        print("*", end="")
    
    
    
    
    
                    

Try it yourself